home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / DCLAP 6d / dclap6d / SeqPups / appsrc / drawtree.src / interface.h < prev    next >
Text File  |  1996-07-05  |  636b  |  28 lines

  1. /* interface.h:  access to interface.c, a 2 window text/graphics
  2.     environment, with a scrolling text window and c-like I/O functions.
  3.     This also sets up some defines for the standard c stuff. */
  4.  
  5. #define printf  macprintf
  6. #define gets    macgets
  7. #define scanf   macscanf
  8. #define puts    macputs
  9. #undef putchar
  10. #define putchar macputchar
  11. #undef getchar
  12. #define getchar() '\n'
  13. #define fflush(file) macflush()
  14. #define exit(x) eventloop()
  15. void macprintf(char *,...);
  16. int macscanf(char *,...);
  17. void macsetup(char *,char *);
  18. void macgets(char *);
  19. void macputs(char *);
  20. void eventloop();
  21. void queryevent();
  22. void fixmacfile(char *);
  23.  
  24.  
  25.  
  26.  
  27.  
  28.